home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DDJMAG / DDJ9110.ZIP / STRING.ZIP / STRILE.CPP < prev    next >
C/C++ Source or Header  |  1991-07-30  |  320b  |  20 lines

  1. #include <string.h>
  2. #include <ctype.h>
  3. #include <errno.h>
  4. #include <string.hpp>
  5.  
  6. int operator<=(const String &a, const String &b)
  7. {
  8.     return !(a > b);
  9. }
  10.  
  11. int operator<=(const String &a, const char *s)
  12. {
  13.     return !(a > s);
  14. }
  15.  
  16. int operator<=(const char *s, const String &a)
  17. {
  18.     return !(s > a);
  19. }
  20.